home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / fue / c / DISPLAY < prev    next >
Text File  |  1991-06-08  |  41KB  |  1,425 lines

  1. /*
  2.  * The functions in this file handle redisplay. There are two halves, the
  3.  * ones that update the virtual display screen, and the ones that make the
  4.  * physical display screen the same as the virtual display screen. These
  5.  * functions use hints that are left in the windows by the commands.
  6.  *
  7.  */
  8.  
  9. /*{{{  #include's*/
  10. #include        <stdio.h>
  11. #include        "estruct.h"
  12. #include        "etype.h"
  13. #include        "edef.h"
  14. #include        "elang.h"
  15.  
  16. /*}}}*/
  17.  
  18. /*{{{  typedef struct  VIDEO {*/
  19. typedef struct  VIDEO {
  20.         int     v_flag;                 /* Flags */
  21. #if     COLOR
  22.         int     v_fcolor;               /* current forground color */
  23.         int     v_bcolor;               /* current background color */
  24.         int     v_rfcolor;              /* requested forground color */
  25.         int     v_rbcolor;              /* requested background color */
  26. #endif
  27.         char    v_text[1];              /* Screen data. */
  28. }       VIDEO;
  29.  
  30. /*}}}*/
  31.  
  32. /*{{{  some defines*/
  33. #define VFCHG   0x0001                  /* Changed flag                 */
  34. #define VFEXT   0x0002                  /* extended (beyond column 80)  */
  35. #define VFREV   0x0004                  /* reverse video status         */
  36. #define VFREQ   0x0008                  /* reverse video request        */
  37. #define VFCOL   0x0010                  /* color change requested       */
  38. /*}}}*/
  39.  
  40. static VIDEO   **vscreen;                      /* Virtual screen. */
  41. #if     MEMMAP == 0
  42. static VIDEO   **pscreen;                      /* Physical screen. */
  43. #endif
  44.  
  45. /*
  46.  * Initialize the data structures used by the display code. The edge vectors
  47.  * used to access the screens are set up. The operating system's terminal I/O
  48.  * channel is set up. All the other things get initialized at compile time.
  49.  * The original window has "WFCHG" set, so that it will get completely
  50.  * redrawn on the first call to "update".
  51.  */
  52. /*{{{  PASCAL NEAR vtinit()*/
  53. PASCAL NEAR vtinit()
  54. {
  55.     register int i;
  56.     register VIDEO *vp;
  57.  
  58.     TTopen();           /* open the screen */
  59.     TTkopen();          /* open the keyboard */
  60.     TTrev(FALSE);
  61.     vscreen = (VIDEO **) malloc(term.t_mrow*sizeof(VIDEO *));
  62.  
  63.     if (vscreen == NULL)
  64.         meexit(1);
  65.  
  66. #if     MEMMAP == 0
  67.     pscreen = (VIDEO **) malloc(term.t_mrow*sizeof(VIDEO *));
  68.  
  69.     if (pscreen == NULL)
  70.         meexit(1);
  71. #endif
  72.  
  73.     for (i = 0; i < term.t_mrow; ++i)
  74.         {
  75.         vp = (VIDEO *) malloc(sizeof(VIDEO)+term.t_mcol);
  76.  
  77.         if (vp == NULL)
  78.             meexit(1);
  79.  
  80.         vp->v_flag = 0;
  81. #if     COLOR
  82.         vp->v_rfcolor = 7;
  83.         vp->v_rbcolor = 0;
  84. #endif
  85.         vscreen[i] = vp;
  86. #if     MEMMAP == 0
  87.         vp = (VIDEO *) malloc(sizeof(VIDEO)+term.t_mcol);
  88.  
  89.         if (vp == NULL)
  90.             meexit(1);
  91.  
  92.         vp->v_flag = 0;
  93.         pscreen[i] = vp;
  94. #endif
  95.         }
  96. }
  97. /*}}}*/
  98.  
  99. #if     CLEAN
  100. /* free up all the dynamically allocated video structures */
  101.  
  102. /*{{{  PASCAL NEAR vtfree()*/
  103. PASCAL NEAR vtfree()
  104. {
  105.         int i;
  106.         for (i = 0; i < term.t_mrow; ++i) {
  107.                 free(vscreen[i]);
  108. #if     MEMMAP == 0
  109.                 free(pscreen[i]);
  110. #endif
  111.         }
  112.         free(vscreen);
  113. #if     MEMMAP == 0
  114.         free(pscreen);
  115. #endif
  116. }
  117. /*}}}*/
  118. #endif
  119.  
  120. /*
  121.  * Clean up the virtual terminal system, in anticipation for a return to the
  122.  * operating system. Move down to the last line and clear it out (the next
  123.  * system prompt will be written in the line). Shut down the channel to the
  124.  * terminal.
  125.  */
  126. /*{{{  PASCAL NEAR vttidy()*/
  127. PASCAL NEAR vttidy()
  128. {
  129.     mlerase();
  130.     movecursor(term.t_nrow, 0);
  131.     TTflush();
  132.     TTclose();
  133.     TTkclose();
  134. }
  135. /*}}}*/
  136.  
  137. /*
  138.  * Set the virtual cursor to the specified row and column on the virtual
  139.  * screen. There is no checking for nonsense values; this might be a good
  140.  * idea during the early stages.
  141.  */
  142. /*{{{  PASCAL NEAR vtmove(row, col)*/
  143. PASCAL NEAR vtmove(row, col)
  144. {
  145.     vtrow = row;
  146.     vtcol = col;
  147. }
  148.  
  149. /*}}}*/
  150.  
  151. /* Write a character to the virtual screen. The virtual row and
  152.    column are updated. If we are not yet on left edge, don't print
  153.    it yet. If the line is too long put a "$" in the last column.
  154.    This routine only puts printing characters into the virtual
  155.    terminal buffers. Only column overflow is checked.
  156. */
  157.  
  158. /*{{{  PASCAL NEAR vtputc(c)*/
  159. PASCAL NEAR vtputc(c)
  160.  
  161. int c;
  162.  
  163. {
  164.         register VIDEO *vp;     /* ptr to line being updated */
  165.  
  166.         vp = vscreen[vtrow];
  167.  
  168.         if (c == '\t') {
  169.                 do {
  170.                         vtputc(' ');
  171.                 } while (((vtcol + taboff) % (tabsize)) != 0);
  172.         } else if (vtcol >= term.t_ncol) {
  173.                 ++vtcol;
  174.                 vp->v_text[term.t_ncol - 1] = '$';
  175.         } else if (c < 0x20 || c == 0x7F) {
  176.                 vtputc('^');
  177.                 vtputc(c ^ 0x40);
  178.         } else {
  179.                 if (vtcol >= 0)
  180.                         vp->v_text[vtcol] = c;
  181.                 ++vtcol;
  182.         }
  183. }
  184. /*}}}*/
  185.  
  186. /*
  187.  * Erase from the end of the software cursor to the end of the line on which
  188.  * the software cursor is located.
  189.  */
  190. /*{{{  PASCAL NEAR vteeol()*/
  191. PASCAL NEAR vteeol()
  192. {
  193.     register VIDEO      *vp;
  194.  
  195.     vp = vscreen[vtrow];
  196.     while (vtcol < term.t_ncol)
  197.         vp->v_text[vtcol++] = ' ';
  198. }
  199. /*}}}*/
  200.  
  201. /* upscreen:    user routine to force a screen update
  202.                 always finishes complete update         */
  203.  
  204. /*{{{  PASCAL NEAR upscreen(f, n)*/
  205. PASCAL NEAR upscreen(f, n)
  206.  
  207. {
  208.         update(TRUE);
  209.         return(TRUE);
  210. }
  211. /*}}}*/
  212.  
  213. /*
  214.  * Make sure that the display is right. This is a three part process. First,
  215.  * scan through all of the windows looking for dirty ones. Check the framing,
  216.  * and refresh the screen. Second, make sure that "currow" and "curcol" are
  217.  * correct for the current window. Third, make the virtual and physical
  218.  * screens the same.
  219.  */
  220. /*{{{  PASCAL NEAR update(force)*/
  221. PASCAL NEAR update(force)
  222.  
  223. int force;      /* force update past type ahead? */
  224.  
  225. {
  226.         register WINDOW *wp;
  227.  
  228. #if     TYPEAH
  229.         if (force == FALSE && typahead())
  230.                 return(TRUE);
  231. #endif
  232. #if     VISMAC == 0
  233.         if (force == FALSE && kbdmode == PLAY)
  234.                 return(TRUE);
  235. #endif
  236.  
  237.         /* update any windows that need refreshing */
  238.         wp = wheadp;
  239.         while (wp != NULL) {
  240.                 if (wp->w_flag) {
  241.                         /* if the window has changed, service it */
  242.                         reframe(wp);    /* check the framing */
  243.                         if ((wp->w_flag & ~WFMODE) == WFEDIT)
  244.                                 updone(wp);     /* update EDITed line */
  245.                         else if (wp->w_flag & ~WFMOVE)
  246.                                 updall(wp);     /* update all lines */
  247.                         if (wp->w_flag & WFMODE)
  248.                                 modeline(wp);   /* update modeline */
  249.                         wp->w_flag = 0;
  250.                         wp->w_force = 0;
  251.                 }
  252.                 /* on to the next window */
  253.                 wp = wp->w_wndp;
  254.         }
  255.  
  256.         /* recalc the current hardware cursor location */
  257.         updpos();
  258.  
  259. #if     MEMMAP
  260.         /* update the cursor and flush the buffers */
  261.         movecursor(currow, curcol - lbound);
  262. #endif
  263.  
  264.         /* check for lines to de-extend */
  265.         upddex();
  266.  
  267.         /* if screen is garbage, re-plot it */
  268.         if (sgarbf != FALSE)
  269.                 updgar();
  270.  
  271.         /* update the virtual screen to the physical screen */
  272.         updupd(force);
  273.  
  274.         /* update the cursor and flush the buffers */
  275.         movecursor(currow, curcol - lbound);
  276.         TTflush();
  277.  
  278.         return(TRUE);
  279. }
  280. /*}}}*/
  281.  
  282. /*      reframe:        check to see if the cursor is on in the window
  283.                         and re-frame it if needed or wanted             */
  284.  
  285. /*{{{  PASCAL NEAR reframe(wp)*/
  286. PASCAL NEAR reframe(wp)
  287.  
  288. WINDOW *wp;
  289.  
  290. {
  291.         register LINE *lp;      /* search pointer */
  292.         register LINE *rp;      /* reverse search pointer */
  293.         register LINE *hp;      /* ptr to header line in buffer */
  294.         register LINE *tp;      /* temp debugging pointer */
  295.         register int i;         /* general index/# lines to scroll */
  296.         register int nlines;    /* number of lines in current window */
  297.  
  298.         /* figure out our window size */
  299.         nlines = wp->w_ntrows;
  300.         if (modeflag == FALSE)
  301.                 nlines++;
  302.  
  303.         /* if not a requested reframe, check for a needed one */
  304.         if ((wp->w_flag & WFFORCE) == 0) {
  305.                 lp = wp->w_linep;
  306.                 for (i = 0; i < nlines; i++) {
  307.  
  308.                         /* if the line is in the window, no reframe */
  309.                         if (lp == wp->w_dotp)
  310.                                 return(TRUE);
  311.  
  312.                         /* if we are at the end of the file, reframe */
  313.                         if (lp == wp->w_bufp->b_linep)
  314.                                 break;
  315.  
  316.                         /* on to the next line */
  317.                         lp = lforw(lp);
  318.                 }
  319.         }
  320.  
  321.         /* reaching here, we need a window refresh */
  322.         i = wp->w_force;
  323.  
  324.         /* if smooth scrolling is enabled,
  325.                 first.. have we gone off the top? */
  326.         if (sscroll && ((wp->w_flag & WFFORCE) == 0)) {
  327.                 /* search thru the buffer looking for the point */
  328.                 tp = lp = rp = wp->w_linep;
  329.                 hp = wp->w_bufp->b_linep;
  330.                 while ((lp != hp) || (rp != hp)) {
  331.  
  332.                         /* did we scroll downward? */
  333.                         if (lp == wp->w_dotp) {
  334.                                 i = nlines - 1;
  335.                                 break;
  336.                         }
  337.  
  338.                         /* did we scroll upward? */
  339.                         if (rp == wp->w_dotp) {
  340.                                 i = 0;
  341.                                 break;
  342.                         }
  343.  
  344.                         /* advance forward and back */
  345.                         if (lp != hp)
  346.                                 lp = lforw(lp);
  347.                         if (rp != hp)
  348.                                 rp = lback(rp);
  349.  
  350.                         /* problems????? */
  351.                         if (lp == tp || rp == tp) {
  352.                                 printf("BUG IN SMOOTH SCROLL--GET DAN!\n");
  353.                                 TTgetc();
  354.                         }
  355.                 }
  356.         /* how far back to reframe? */
  357.         } else if (i > 0) {     /* only one screen worth of lines max */
  358.                 if (--i >= nlines)
  359.                         i = nlines - 1;
  360.         } else if (i < 0) {     /* negative update???? */
  361.                 i += nlines;
  362.                 if (i < 0)
  363.                         i = 0;
  364.         } else
  365.                 i = nlines / 2;
  366.  
  367.         /* backup to new line at top of window */
  368.         lp = wp->w_dotp;
  369.         while (i != 0 && lback(lp) != wp->w_bufp->b_linep) {
  370.                 --i;
  371.                 if (i < 0) {
  372.                         printf("OTHER BUG IN DISPLAY --- GET DAN!!!\n");
  373.                         TTgetc();
  374.                 }
  375.                 lp = lback(lp);
  376.         }
  377.  
  378.         /* and reset the current line at top of window */
  379.         wp->w_linep = lp;
  380.         wp->w_flag |= WFHARD;
  381.         wp->w_flag &= ~WFFORCE;
  382.         return(TRUE);
  383. }
  384. /*}}}*/
  385.  
  386. /*      updone: update the current line to the virtual screen           */
  387.  
  388. /*{{{  PASCAL NEAR updone(wp)*/
  389. PASCAL NEAR updone(wp)
  390.  
  391. WINDOW *wp;     /* window to update current line in */
  392.  
  393. {
  394.         register LINE *lp;      /* line to update */
  395.         register int sline;     /* physical screen line to update */
  396.         register int i;
  397.  
  398.         /* search down the line we want */
  399.         lp = wp->w_linep;
  400.         sline = wp->w_toprow;
  401.         while (lp != wp->w_dotp) {
  402.                 ++sline;
  403.                 lp = lforw(lp);
  404.         }
  405.  
  406.         /* and update the virtual line */
  407.         vscreen[sline]->v_flag |= VFCHG;
  408.         vscreen[sline]->v_flag &= ~VFREQ;
  409.         taboff = wp->w_fcol;
  410.         vtmove(sline, -taboff);
  411.         for (i=0; i < llength(lp); ++i)
  412.                 vtputc(lgetc(lp, i));
  413. #if     COLOR
  414.         vscreen[sline]->v_rfcolor = wp->w_fcolor;
  415.         vscreen[sline]->v_rbcolor = wp->w_bcolor;
  416. #endif
  417.         vteeol();
  418.         taboff = 0;
  419. }
  420.  
  421. /*}}}*/
  422.  
  423. /*      updall: update all the lines in a window on the virtual screen */
  424.  
  425. /*{{{  PASCAL NEAR updall(wp)*/
  426. PASCAL NEAR updall(wp)
  427.  
  428. WINDOW *wp;     /* window to update lines in */
  429.  
  430. {
  431.         register LINE *lp;      /* line to update */
  432.         register int sline;     /* physical screen line to update */
  433.         register int i;
  434.         register int nlines;    /* number of lines in the current window */
  435.  
  436.         /* search down the lines, updating them */
  437.         lp = wp->w_linep;
  438.         sline = wp->w_toprow;
  439.         nlines = wp->w_ntrows;
  440.         if (modeflag == FALSE)
  441.                 nlines++;
  442.         taboff = wp->w_fcol;
  443.         while (sline < wp->w_toprow + nlines) {
  444.  
  445.                 /* and update the virtual line */
  446.                 vscreen[sline]->v_flag |= VFCHG;
  447.                 vscreen[sline]->v_flag &= ~VFREQ;
  448.                 vtmove(sline, -taboff);
  449.                 if (lp != wp->w_bufp->b_linep) {
  450.                         /* if we are not at the end */
  451.                         for (i=0; i < llength(lp); ++i)
  452.                                 vtputc(lgetc(lp, i));
  453.                         lp = lforw(lp);
  454.                 }
  455.  
  456.                 /* make sure we are on screen */
  457.                 if (vtcol < 0)
  458.                         vtcol = 0;
  459.  
  460.                 /* on to the next one */
  461. #if     COLOR
  462.                 vscreen[sline]->v_rfcolor = wp->w_fcolor;
  463.                 vscreen[sline]->v_rbcolor = wp->w_bcolor;
  464. #endif
  465.                 vteeol();
  466.                 ++sline;
  467.         }
  468.         taboff = 0;
  469. }
  470. /*}}}*/
  471.  
  472. /*      updpos: update the position of the hardware cursor and handle extended
  473.                 lines. This is the only update for simple moves.        */
  474.  
  475. /*{{{  PASCAL NEAR updpos()*/
  476. PASCAL NEAR updpos()
  477.  
  478. {
  479.         register LINE *lp;
  480.         register int c;
  481.         register int i;
  482.  
  483.         /* find the current row */
  484.         lp = curwp->w_linep;
  485.         currow = curwp->w_toprow;
  486.         while (lp != curwp->w_dotp) {
  487.                 ++currow;
  488.                 lp = lforw(lp);
  489.         }
  490.  
  491.         /* find the current column */
  492.         curcol = 0;
  493.         i = 0;
  494.         while (i < curwp->w_doto) {
  495.                 c = lgetc(lp, i++);
  496.                 if (c == '\t')
  497.                         curcol += - (curcol % tabsize) + (tabsize - 1);
  498.                 else
  499.                         if (c < 0x20 || c == 0x7f)
  500.                                 ++curcol;
  501.  
  502.                 ++curcol;
  503.         }
  504.  
  505.         /* adjust by the current first column position */
  506.         curcol -= curwp->w_fcol;
  507.  
  508.         /* make sure it is not off the left side of the screen */
  509.         while (curcol < 0) {
  510.                 if (curwp->w_fcol >= hjump) {
  511.                         curcol += hjump;
  512.                         curwp->w_fcol -= hjump;
  513.                 } else {
  514.                         curcol += curwp->w_fcol;
  515.                         curwp->w_fcol = 0;
  516.                 }
  517.                 curwp->w_flag |= WFHARD | WFMODE;
  518.         }
  519.  
  520.         /* if horizontall scrolling is enabled, shift if needed */
  521.         if (hscroll) {
  522.                 while (curcol >= term.t_ncol - 1) {
  523.                         curcol -= hjump;
  524.                         curwp->w_fcol += hjump;
  525.                         curwp->w_flag |= WFHARD | WFMODE;
  526.                 }
  527.         } else {
  528.         /* if extended, flag so and update the virtual line image */
  529.                 if (curcol >=  term.t_ncol - 1) {
  530.                         vscreen[currow]->v_flag |= (VFEXT | VFCHG);
  531.                         updext();
  532.                 } else
  533.                         lbound = 0;
  534.         }
  535.  
  536.         /* update the current window if we have to move it around */
  537.         if (curwp->w_flag & WFHARD)
  538.                 updall(curwp);
  539.         if (curwp->w_flag & WFMODE)
  540.                 modeline(curwp);
  541.         curwp->w_flag = 0;
  542. }
  543. /*}}}*/
  544.  
  545. /*      upddex: de-extend any line that derserves it            */
  546.  
  547. /*{{{  PASCAL NEAR upddex()*/
  548. PASCAL NEAR upddex()
  549.  
  550. {
  551.         register WINDOW *wp;
  552.         register LINE *lp;
  553.         register int i,j;
  554.         register int nlines;    /* number of lines in the current window */
  555.  
  556.         wp = wheadp;
  557.  
  558.         while (wp != NULL) {
  559.                 lp = wp->w_linep;
  560.                 i = wp->w_toprow;
  561.                 nlines = wp->w_ntrows;
  562.                 if (modeflag == FALSE)
  563.                         nlines++;
  564.  
  565.                 while (i < wp->w_toprow + nlines) {
  566.                         if (vscreen[i]->v_flag & VFEXT) {
  567.                                 if ((wp != curwp) || (lp != wp->w_dotp) ||
  568.                                    (curcol < term.t_ncol - 1)) {
  569.                                         taboff = wp->w_fcol;
  570.                                         vtmove(i, -taboff);
  571.                                         for (j = 0; j < llength(lp); ++j)
  572.                                                 vtputc(lgetc(lp, j));
  573.                                         vteeol();
  574.                                         taboff = 0;
  575.  
  576.                                         /* this line no longer is extended */
  577.                                         vscreen[i]->v_flag &= ~VFEXT;
  578.                                         vscreen[i]->v_flag |= VFCHG;
  579.                                 }
  580.                         }
  581.                         lp = lforw(lp);
  582.                         ++i;
  583.                 }
  584.                 /* and onward to the next window */
  585.                 wp = wp->w_wndp;
  586.         }
  587. }
  588. /*}}}*/
  589.  
  590. /*      updgar: if the screen is garbage, clear the physical screen and
  591.                 the virtual screen and force a full update              */
  592.  
  593. /*{{{  PASCAL NEAR updgar()*/
  594. PASCAL NEAR updgar()
  595.  
  596. {
  597.         register int i;
  598. #if     MEMMAP == 0
  599.         register int j;
  600.         register char *txt;
  601. #endif
  602.  
  603.         for (i = 0; i < term.t_nrow; ++i) {
  604.                 vscreen[i]->v_flag |= VFCHG;
  605. #if     REVSTA
  606.                 vscreen[i]->v_flag &= ~VFREV;
  607. #endif
  608. #if     COLOR
  609.                 vscreen[i]->v_fcolor = gfcolor;
  610.                 vscreen[i]->v_bcolor = gbcolor;
  611. #endif
  612. #if     MEMMAP == 0
  613.                 txt = pscreen[i]->v_text;
  614.                 for (j = 0; j < term.t_ncol; ++j)
  615.                         txt[j] = ' ';
  616. #endif
  617.         }
  618.  
  619.         movecursor(0, 0);                /* Erase the screen. */
  620.         (*term.t_eeop)();
  621.         sgarbf = FALSE;                  /* Erase-page clears */
  622.         mpresf = FALSE;                  /* the message area. */
  623. #if     COLOR
  624.         mlerase();                      /* needs to be cleared if colored */
  625. #endif
  626. }
  627. /*}}}*/
  628.  
  629. /*      updupd: update the physical screen from the virtual screen      */
  630.  
  631. /*{{{  PASCAL NEAR updupd(force)*/
  632. PASCAL NEAR updupd(force)
  633.  
  634. int force;      /* forced update flag */
  635.  
  636. {
  637.         register VIDEO *vp1;
  638.         register int i;
  639.  
  640.         int start=(ttrow < term.t_nrow ? ttrow : 0);
  641.  
  642. /*{{{  update downwards*/
  643.         for (i = start; i < term.t_nrow; ++i) {
  644.                 vp1 = vscreen[i];
  645.  
  646.                 /* for each line that needs to be updated*/
  647.                 if ((vp1->v_flag & VFCHG) != 0) {
  648. #if     TYPEAH
  649.                         if (force == FALSE && typahead())
  650.                                 return(TRUE);
  651. #endif
  652. #if     MEMMAP
  653.                         updateline(i, vp1);
  654. #else
  655.                         updateline(i, vp1, pscreen[i]);
  656. #endif
  657.                 }
  658.         }
  659. /*}}}*/
  660. /*{{{  update upwards*/
  661.         for (i = start-1; i >= 0; --i) {
  662.                 vp1 = vscreen[i];
  663.  
  664.                 /* for each line that needs to be updated*/
  665.                 if ((vp1->v_flag & VFCHG) != 0) {
  666. #if     TYPEAH
  667.                         if (force == FALSE && typahead())
  668.                                 return(TRUE);
  669. #endif
  670. #if     MEMMAP
  671.                         updateline(i, vp1);
  672. #else
  673.                         updateline(i, vp1, pscreen[i]);
  674. #endif
  675.                 }
  676.         }
  677. /*}}}*/
  678.  
  679.         return(TRUE);
  680. }
  681. /*}}}*/
  682.  
  683. /*      updext: update the extended line which the cursor is currently
  684.                 on at a column greater than the terminal width. The line
  685.                 will be scrolled right or left to let the user see where
  686.                 the cursor is
  687.                                                                 */
  688. /*{{{  PASCAL NEAR updext()*/
  689. PASCAL NEAR updext()
  690.  
  691. {
  692.         register int rcursor;   /* real cursor location */
  693.         register LINE *lp;      /* pointer to current line */
  694.         register int j;         /* index into line */
  695.  
  696.         /* calculate what column the real cursor will end up in */
  697.         rcursor = ((curcol - term.t_ncol) % term.t_scrsiz)
  698.                         + term.t_margin;
  699.         lbound = curcol - rcursor + 1;
  700.         taboff = lbound + curwp->w_fcol;
  701.  
  702.         /* scan through the line outputing characters to the virtual screen */
  703.         /* once we reach the left edge                                  */
  704.         vtmove(currow, -taboff); /* start scanning offscreen */
  705.         lp = curwp->w_dotp;             /* line to output */
  706.         for (j=0; j<llength(lp); ++j)   /* until the end-of-line */
  707.                 vtputc(lgetc(lp, j));
  708.  
  709.         /* truncate the virtual line, restore tab offset */
  710.         vteeol();
  711.         taboff = 0;
  712.  
  713.         /* and put a '$' in column 1 */
  714.         vscreen[currow]->v_text[0] = '$';
  715. }
  716. /*}}}*/
  717.  
  718. /*
  719.  * Update a single line. This does not know how to use insert or delete
  720.  * character sequences; we are using VT52 functionality. Update the physical
  721.  * row and column variables. It does try an exploit erase to end of line. The
  722.  * RAINBOW version of this routine uses fast video.
  723.  */
  724. #if     MEMMAP
  725. /*      UPDATELINE specific code for the IBM-PC and other compatables */
  726.  
  727. /*{{{  PASCAL NEAR updateline(row, vp1)*/
  728. PASCAL NEAR updateline(row, vp1)
  729.  
  730. int row;                /* row of screen to update */
  731. struct VIDEO *vp1;      /* virtual screen image */
  732.  
  733. {
  734. #if     COLOR
  735.         scwrite(row, vp1->v_text, vp1->v_rfcolor, vp1->v_rbcolor);
  736.         vp1->v_fcolor = vp1->v_rfcolor;
  737.         vp1->v_bcolor = vp1->v_rbcolor;
  738. #else
  739.         if (vp1->v_flag & VFREQ)
  740.                 scwrite(row, vp1->v_text, 0, 7);
  741.         else
  742.                 scwrite(row, vp1->v_text, 7, 0);
  743. #endif
  744.         vp1->v_flag &= ~(VFCHG | VFCOL);        /* flag this line as changed */
  745.  
  746. }
  747. /*}}}*/
  748.  
  749. #else
  750.  
  751. /*{{{  PASCAL NEAR updateline(row, vp1, vp2)*/
  752. PASCAL NEAR updateline(row, vp1, vp2)
  753.  
  754. int row;                /* row of screen to update */
  755. struct VIDEO *vp1;      /* virtual screen image */
  756. struct VIDEO *vp2;      /* physical screen image */
  757.  
  758. {
  759. #if RAINBOW
  760.  
  761. /*      UPDATELINE specific code for the DEC rainbow 100 micro  */
  762.    /*{{{  */
  763.    
  764.     register char *cp1;
  765.     register char *cp2;
  766.     register int nch;
  767.    
  768.     /* since we don't know how to make the rainbow do this, turn it off */
  769.     flags &= (~VFREV & ~VFREQ);
  770.    
  771.     cp1 = &vp1->v_text[0];                    /* Use fast video. */
  772.     cp2 = &vp2->v_text[0];
  773.     putline(row+1, 1, cp1);
  774.     nch = term.t_ncol;
  775.    
  776.     do
  777.         {
  778.         *cp2 = *cp1;
  779.         ++cp2;
  780.         ++cp1;
  781.         }
  782.     while (--nch);
  783.     *flags &= ~VFCHG;
  784.    /*}}}*/
  785.  
  786. #else
  787.  
  788. /*      UPDATELINE code for all other versions          */
  789.  
  790.         /*{{{  declare variables*/
  791.         register char *cp1;
  792.         register char *cp2;
  793.         register char *cp3;
  794.         register char *cp4;
  795.         register char *cp5;
  796.         register int nbflag;    /* non-blanks to the right flag? */
  797.         int rev;                /* reverse video flag */
  798.         int req;                /* reverse video request flag */
  799.         int upcol;              /* update column (KRS) */
  800.         /*}}}*/
  801.         
  802.         /*{{{  set up pointers to virtual and physical lines*/
  803.         /* set up pointers to virtual and physical lines */
  804.         cp1 = &vp1->v_text[0];
  805.         cp2 = &vp2->v_text[0];
  806.         /*}}}*/
  807.         
  808. #if     COLOR
  809.         TTforg(vp1->v_rfcolor);
  810.         TTbacg(vp1->v_rbcolor);
  811. #endif
  812.         
  813. #if     REVSTA | COLOR
  814.         /* if we need to change the reverse video status of the
  815.            current line, we need to re-write the entire line     */
  816.         rev = (vp1->v_flag & VFREV) == VFREV;
  817.         req = (vp1->v_flag & VFREQ) == VFREQ;
  818.  
  819. /*{{{  a very long if, to do with reverse video...*/
  820.         if ((rev != req)
  821. #if     COLOR
  822.             || (vp1->v_fcolor != vp1->v_rfcolor) || (vp1->v_bcolor != vp1->v_rbcolor)
  823. #endif
  824. #if     HP150
  825.         /* the HP150 has some reverse video problems */
  826.             || req || rev
  827. #endif
  828.                         )
  829. /*}}}*/
  830.  
  831.           {
  832.                 /*{{{  goto start of line*/
  833.                 movecursor(row, 0);     /* Go to start of line. */
  834.                 /*}}}*/
  835.                 /*{{{  set rev video if needed*/
  836.                 /* set rev video if needed */
  837.                 if (rev != req)
  838.                         (*term.t_rev)(req);
  839.                 /*}}}*/
  840.                 /*{{{  dump line to screen and virtual array*/
  841.                 /* scan through the line and dump it to the screen and
  842.                    the virtual screen array                             */
  843.                 
  844.                 cp3 = &vp1->v_text[term.t_ncol];
  845.                 while (cp1 < cp3) {
  846.                         TTputc(*cp1);
  847.                         ++ttcol;
  848.                         *cp2++ = *cp1++;
  849.                 }
  850.                 /*}}}*/
  851.                 /*{{{  turn rev video off*/
  852.                 /* turn rev video off */
  853.                 if (rev != req)
  854.                         (*term.t_rev)(FALSE);
  855.                 /*}}}*/
  856.         
  857.                 /*{{{  update needed flags*/
  858.                 vp1->v_flag &= ~VFCHG;
  859.                 if (req)
  860.                         vp1->v_flag |= VFREV;
  861.                 else
  862.                         vp1->v_flag &= ~VFREV;
  863.                 /*}}}*/
  864. #if     COLOR
  865.                 vp1->v_fcolor = vp1->v_rfcolor;
  866.                 vp1->v_bcolor = vp1->v_rbcolor;
  867. #endif
  868.                 return(TRUE);
  869.         }
  870. #endif
  871.  
  872.         upcol = 0;
  873.  
  874.         /*{{{  advance past any common chars at the left*/
  875.         /* advance past any common chars at the left */
  876.         while (cp1 != &vp1->v_text[term.t_ncol] && cp1[0] == cp2[0]) {
  877.                 ++cp1;
  878.                 ++upcol;
  879.                 ++cp2;
  880.         }
  881.         /*}}}*/
  882.  
  883. /* This can still happen, even though we only call this routine on changed
  884.  * lines. A hard update is always done when a line splits, a massive
  885.  * change is done, or a buffer is displayed twice. This optimizes out most
  886.  * of the excess updating. A lot of computes are used, but these tend to
  887.  * be hard operations that do a lot of update, so I don't really care.
  888.  */
  889.         /*{{{  if both lines are the same, no update needs to be done*/
  890.         /* if both lines are the same, no update needs to be done */
  891.         if (cp1 == &vp1->v_text[term.t_ncol]) {
  892.                 vp1->v_flag &= ~VFCHG;          /* flag this line is changed */
  893.                 return(TRUE);
  894.         }
  895.         /*}}}*/
  896.  
  897.         /*{{{  find out if there is a match on the right*/
  898.         /* find out if there is a match on the right */
  899.         nbflag = FALSE;
  900.         cp3 = &vp1->v_text[term.t_ncol];
  901.         cp4 = &vp2->v_text[term.t_ncol];
  902.         
  903.         while (cp3[-1] == cp4[-1]) {
  904.                 --cp3;
  905.                 --cp4;
  906.                 if (cp3[0] != ' ')              /* Note if any nonblank */
  907.                         nbflag = TRUE;          /* in right match. */
  908.         }
  909.         
  910.         cp5 = cp3;
  911.         /*}}}*/
  912.  
  913.         /*{{{  Erase to EOL ?*/
  914.         /* Erase to EOL ? */
  915.         if (nbflag == FALSE && eolexist == TRUE && (req != TRUE)) {
  916.                 while (cp5!=cp1 && cp5[-1]==' ')
  917.                         --cp5;
  918.         
  919.                 if (cp3-cp5 <= 3)               /* Use only if erase is */
  920.                         cp5 = cp3;              /* fewer characters. */
  921.         }
  922.         /*}}}*/
  923.  
  924.         /* movecursor(row, (int)(cp1 - &vp1->v_text[0]));  Go to start of line. */
  925.         movecursor(row, upcol);
  926. #if     REVSTA
  927.         TTrev(rev);
  928. #endif
  929.  
  930.         while (cp1 != cp5) {            /* Ordinary. */
  931.                 TTputc(*cp1);
  932.                 ++ttcol;
  933.                 *cp2++ = *cp1++;
  934.         }
  935.  
  936.         if (cp5 != cp3) {               /* Erase. */
  937.                 TTeeol();
  938.                 while (cp1 != cp3)
  939.                         *cp2++ = *cp1++;
  940.         }
  941. #if     REVSTA
  942.         TTrev(FALSE);
  943. #endif
  944.         vp1->v_flag &= ~VFCHG;          /* flag this line as updated */
  945.         return(TRUE);
  946. #endif
  947. }
  948. /*}}}*/
  949. #endif
  950.  
  951. /*
  952.  * Redisplay the mode line for the window pointed to by the "wp". This is the
  953.  * only routine that has any idea of how the modeline is formatted. You can
  954.  * change the modeline format by hacking at this routine. Called by "update"
  955.  * any time there is a dirty window.
  956.  */
  957. /*{{{  PASCAL NEAR modeline(wp)*/
  958. PASCAL NEAR modeline(wp)
  959.  
  960. WINDOW *wp;     /* window to update modeline for */
  961.  
  962. {
  963.         register char *cp;
  964.         register int c;
  965.         register int n;         /* cursor position count */
  966.         register BUFFER *bp;
  967.         register int i;         /* loop index */
  968.         register int lchar;     /* character to draw line in buffer with */
  969.         register int firstm;    /* is this the first mode? */
  970.         char tline[NLINE];              /* buffer for part of mode line */
  971.  
  972.         /* don't bother if there is none! */
  973.         if (modeflag == FALSE)
  974.                 return;
  975.  
  976.         n = wp->w_toprow+wp->w_ntrows;          /* Location. */
  977. #if     COLOR
  978.         vscreen[n]->v_flag |= VFCHG | VFCOL;            /* Redraw next time. */
  979.         vscreen[n]->v_rfcolor = 0;                      /* black on */
  980.         vscreen[n]->v_rbcolor = 7;                      /* white.....*/
  981. #else
  982.         vscreen[n]->v_flag |= VFCHG | VFREQ | VFCOL;    /* Redraw next time. */
  983. #endif
  984.         vtmove(n, 0);                           /* Seek to right line. */
  985.         if (wp == curwp)                        /* mark the current buffer */
  986.                 lchar = '=';
  987.         else
  988. #if     REVSTA
  989.         if (revexist)
  990.                 lchar = ' ';
  991.         else
  992. #endif
  993.                 lchar = '-';
  994.  
  995.         bp = wp->w_bufp;
  996.         if ((bp->b_flag&BFTRUNC) != 0)          /* "#" if truncated */
  997.                 vtputc('#');
  998.         else
  999.                 vtputc(lchar);
  1000.  
  1001.         if ((bp->b_flag&BFCHG) != 0)            /* "*" if changed. */
  1002.                 vtputc('*');
  1003.         else
  1004.                 vtputc(lchar);
  1005.  
  1006.         if ((bp->b_flag&BFNAROW) != 0) {                /* "<>" if narrowed */
  1007.                 vtputc('<');
  1008.                 vtputc('>');
  1009.         } else {
  1010.                 vtputc(lchar);
  1011.                 vtputc(lchar);
  1012.         }
  1013.  
  1014.         n  = 4;
  1015.         strcpy(tline, " ");                     /* Buffer name. */
  1016.         strcat(tline, PROGNAME);
  1017.         strcat(tline, " ");
  1018.         strcat(tline, VERSION);
  1019.         strcat(tline, " ");
  1020.  
  1021.         /* are we horizontally scrolled? */
  1022.         if (wp->w_fcol > 0) {
  1023.                 strcat(tline, "[<");
  1024.                 strcat(tline, int_asc(wp->w_fcol));
  1025.                 strcat(tline, "]");
  1026.         }
  1027.  
  1028.         /* display the modes */
  1029.         strcat(tline, "(");
  1030.         firstm = TRUE;
  1031.         for (i = 0; i < NUMMODES; i++)  /* add in the mode flags */
  1032.                 if (wp->w_bufp->b_mode & (1 << i)) {
  1033.                         if (firstm != TRUE)
  1034.                                 strcat(tline, " ");
  1035.                         firstm = FALSE;
  1036.                         strcat(tline, modename[i]);
  1037.                 }
  1038.         strcat(tline,") ");
  1039.  
  1040.         cp = &tline[0];
  1041.         while ((c = *cp++) != 0) {
  1042.                 vtputc(c);
  1043.                 ++n;
  1044.         }
  1045.  
  1046. #if 0
  1047.         vtputc(lchar);
  1048.         vtputc((wp->w_flag&WFCOLR) != 0  ? 'C' : lchar);
  1049.         vtputc((wp->w_flag&WFMODE) != 0  ? 'M' : lchar);
  1050.         vtputc((wp->w_flag&WFHARD) != 0  ? 'H' : lchar);
  1051.         vtputc((wp->w_flag&WFEDIT) != 0  ? 'E' : lchar);
  1052.         vtputc((wp->w_flag&WFMOVE) != 0  ? 'V' : lchar);
  1053.         vtputc((wp->w_flag&WFFORCE) != 0 ? 'F' : lchar);
  1054.         vtputc(lchar);
  1055.         n += 8;
  1056. #endif
  1057.  
  1058.         vtputc(lchar);
  1059.         vtputc(lchar);
  1060.         vtputc(' ');
  1061.         n += 3;
  1062.         cp = &bp->b_bname[0];
  1063.  
  1064.         while ((c = *cp++) != 0) {
  1065.                 vtputc(c);
  1066.                 ++n;
  1067.         }
  1068.  
  1069.         vtputc(' ');
  1070.         vtputc(lchar);
  1071.         vtputc(lchar);
  1072.         n += 3;
  1073.  
  1074.         if (bp->b_fname[0] != 0) {      /* File name. */
  1075.                 vtputc(' ');
  1076.                 ++n;
  1077.                 cp = TEXT34;
  1078. /*                   "File: " */
  1079.  
  1080.                 while ((c = *cp++) != 0) {
  1081.                         vtputc(c);
  1082.                         ++n;
  1083.                 }
  1084.  
  1085.                 cp = &bp->b_fname[0];
  1086.  
  1087.                 while ((c = *cp++) != 0) {
  1088.                         vtputc(c);
  1089.                         ++n;
  1090.                 }
  1091.  
  1092.                 vtputc(' ');
  1093.                 ++n;
  1094.         }
  1095.  
  1096.         while (n < term.t_ncol) {       /* Pad to full width. */
  1097.                 vtputc(lchar);
  1098.                 ++n;
  1099.         }
  1100. }
  1101. /*}}}*/
  1102.  
  1103. /*{{{  PASCAL NEAR upmode()    update all the mode lines*/
  1104. PASCAL NEAR upmode()    /* update all the mode lines */
  1105.  
  1106. {
  1107.         register WINDOW *wp;
  1108.  
  1109.         wp = wheadp;
  1110.         while (wp != NULL) {
  1111.                 wp->w_flag |= WFMODE;
  1112.                 wp = wp->w_wndp;
  1113.         }
  1114. }
  1115. /*}}}*/
  1116.  
  1117. /*{{{  PASCAL NEAR upwind()    force hard updates on all windows*/
  1118. PASCAL NEAR upwind()    /* force hard updates on all windows */
  1119.  
  1120. {
  1121.         register WINDOW *wp;
  1122.  
  1123.         wp = wheadp;
  1124.         while (wp != NULL) {
  1125.                 wp->w_flag |= WFHARD|WFMODE;
  1126.                 wp = wp->w_wndp;
  1127.         }
  1128. }
  1129. /*}}}*/
  1130.  
  1131. /*
  1132.  * Send a command to the terminal to move the hardware cursor to row "row"
  1133.  * and column "col". The row and column arguments are origin 0. Optimize out
  1134.  * random calls. Update "ttrow" and "ttcol".
  1135.  */
  1136. /*{{{  PASCAL NEAR movecursor(row, col)*/
  1137. PASCAL NEAR movecursor(row, col)
  1138.     {
  1139.     if (row!=ttrow || col!=ttcol)
  1140.         {
  1141.         ttrow = row;
  1142.         ttcol = col;
  1143.         TTmove(row, col);
  1144.         }
  1145.     }
  1146. /*}}}*/
  1147.  
  1148. /*
  1149.  * Erase the message line. This is a special routine because the message line
  1150.  * is not considered to be part of the virtual screen. It always works
  1151.  * immediately; the terminal buffer is flushed via a call to the flusher.
  1152.  */
  1153. /*{{{  PASCAL NEAR mlerase()*/
  1154. PASCAL NEAR mlerase()
  1155.     {
  1156.     int i;
  1157.     
  1158.     movecursor(term.t_nrow, 0);
  1159.     if (discmd == FALSE)
  1160.         return;
  1161.  
  1162. #if     COLOR
  1163.      TTforg(7);
  1164.      TTbacg(0);
  1165. #endif
  1166.     if (eolexist == TRUE)
  1167.             TTeeol();
  1168.     else {
  1169.         for (i = 0; i < term.t_ncol - 1; i++)
  1170.             TTputc(' ');
  1171.         movecursor(term.t_nrow, 1);     /* force the move! */
  1172.         movecursor(term.t_nrow, 0);
  1173.     }
  1174.     TTflush();
  1175.     mpresf = FALSE;
  1176.     }
  1177. /*}}}*/
  1178.  
  1179. /*
  1180.  * Write a message into the message line. Keep track of the physical cursor
  1181.  * position. A small class of printf like format items is handled. Assumes the
  1182.  * stack grows down; this assumption is made by the "+=" in the argument scan
  1183.  * loop. If  STACK_GROWS_UP  is set in estruct.h, then we'll assume that the
  1184.  * stack grows up and use "-=" instead of "+=". Set the "message line"
  1185.  *  flag TRUE.  Don't write beyond the end of the current terminal width.
  1186.  */
  1187.  
  1188. /*{{{  PASCAL NEAR mlout(c)*/
  1189. PASCAL NEAR mlout(c)
  1190.  
  1191. int c;  /* character to write on modeline */
  1192.  
  1193. {
  1194.         if (ttcol + 1 < term.t_ncol)
  1195.                 TTputc(c);
  1196.         *lastptr++ = c;
  1197. }
  1198. /*}}}*/
  1199.  
  1200. #if     STACK_GROWS_UP
  1201. #define ADJUST(ptr, dtype)      ptr -= sizeof(dtype)
  1202. #else
  1203. #define ADJUST(ptr, dtype)      ptr += sizeof(dtype)
  1204. #endif
  1205.  
  1206. /* d0..d9 are dummy args to make arg work ok on sun-4 */
  1207. /* so what's wrong with varargs ?? - div              */
  1208.  
  1209. /*{{{  CDECL NEAR mlwrite(fmt, arg, d0, d1, d2, d3, d4, d5, d6, d7, d8, d9)*/
  1210. CDECL NEAR mlwrite(fmt, arg, d0, d1, d2, d3, d4, d5, d6, d7, d8, d9)
  1211.  
  1212. char *fmt;      /* format string for output */
  1213. char *arg;      /* pointer to first argument to print */
  1214.  
  1215. {
  1216.         register int c;         /* current char in format string */
  1217.         register char *ap;      /* ptr to current data field */
  1218.  
  1219.         /* if we are not currently echoing on the command line, abort this */
  1220.         if (discmd == FALSE)
  1221.                 return;
  1222.  
  1223. #if     COLOR
  1224.         /* set up the proper colors for the command line */
  1225.         TTforg(7);
  1226.         TTbacg(0);
  1227. #endif
  1228.  
  1229.         /* if we can not erase to end-of-line, do it manually */
  1230.         if (eolexist == FALSE) {
  1231.                 mlerase();
  1232.                 TTflush();
  1233.         }
  1234.  
  1235.         movecursor(term.t_nrow, 0);
  1236.         lastptr = &lastmesg[0];         /* setup to record message */
  1237.         ap = (char *) &arg;
  1238.         while ((c = *fmt++) != 0) {
  1239.                 if (c != '%') {
  1240.                         mlout(c);
  1241.                         ++ttcol;
  1242.                 } else {
  1243.                         c = *fmt++;
  1244.                         switch (c) {
  1245.                                 case 'd':
  1246.                                         mlputi(*(int *)ap, 10);
  1247.                                         ADJUST(ap, int);
  1248.                                         break;
  1249.  
  1250.                                 case 'o':
  1251.                                         mlputi(*(int *)ap,  8);
  1252.                                         ADJUST(ap, int);
  1253.                                         break;
  1254.  
  1255.                                 case 'x':
  1256.                                         mlputi(*(int *)ap, 16);
  1257.                                         ADJUST(ap, int);
  1258.                                         break;
  1259.  
  1260.                                 case 'D':
  1261.                                         mlputli(*(long *)ap, 10);
  1262.                                         ADJUST(ap, long);
  1263.                                         break;
  1264.  
  1265.                                 case 's':
  1266.                                         mlputs(*(char **)ap);
  1267.                                         ADJUST(ap, char *);
  1268.                                         break;
  1269.  
  1270.                                 case 'f':
  1271.                                         mlputf(*(int *)ap);
  1272.                                         ADJUST(ap, int);
  1273.                                         break;
  1274.  
  1275.                                 default:
  1276.                                         mlout(c);
  1277.                                         ++ttcol;
  1278.                         }
  1279.                 }
  1280.         }
  1281.  
  1282.         /* if we can, erase to the end of screen */
  1283.         if (eolexist == TRUE)
  1284.                 TTeeol();
  1285.         TTflush();
  1286.         mpresf = TRUE;
  1287.         *lastptr = 0;   /* terminate lastmesg[] */
  1288. }
  1289. /*}}}*/
  1290.  
  1291. /*      Force a string out to the message line regardless of the
  1292.         current $discmd setting. This is needed when $debug is TRUE
  1293.         and for the write-message and clear-message-line commands
  1294. */
  1295.  
  1296. /*{{{  PASCAL NEAR mlforce(s)*/
  1297. PASCAL NEAR mlforce(s)
  1298.  
  1299. char *s;        /* string to force out */
  1300.  
  1301. {
  1302.         register int oldcmd;    /* original command display flag */
  1303.  
  1304.         oldcmd = discmd;        /* save the discmd value */
  1305.         discmd = TRUE;          /* and turn display on */
  1306.         mlwrite(s);             /* write the string out */
  1307.         discmd = oldcmd;        /* and restore the original setting */
  1308. }
  1309. /*}}}*/
  1310.  
  1311. /*
  1312.  * Write out a string. Update the physical cursor position. This assumes that
  1313.  * the characters in the string all have width "1"; if this is not the case
  1314.  * things will get screwed up a little.
  1315.  */
  1316. /*{{{  PASCAL NEAR mlputs(s)*/
  1317. PASCAL NEAR mlputs(s)
  1318.     char *s;
  1319.     {
  1320.     register int c;
  1321.  
  1322.     while ((c = *s++) != 0)
  1323.         {
  1324.         mlout(c);
  1325.         ++ttcol;
  1326.         }
  1327.     }
  1328. /*}}}*/
  1329.  
  1330. /*
  1331.  * Write out an integer, in the specified radix. Update the physical cursor
  1332.  * position.
  1333.  */
  1334. /*{{{  PASCAL NEAR mlputi(i, r)*/
  1335. PASCAL NEAR mlputi(i, r)
  1336.     {
  1337.     register int q;
  1338.     static char hexdigits[] = "0123456789ABCDEF";
  1339.  
  1340.     if (i < 0)
  1341.         {
  1342.         i = -i;
  1343.         mlout('-');
  1344.         }
  1345.  
  1346.     q = i/r;
  1347.  
  1348.     if (q != 0)
  1349.         mlputi(q, r);
  1350.  
  1351.     mlout(hexdigits[i%r]);
  1352.     ++ttcol;
  1353.     }
  1354. /*}}}*/
  1355.  
  1356. /*
  1357.  * do the same except as a long integer.
  1358.  */
  1359. /*{{{  PASCAL NEAR mlputli(l, r)*/
  1360. PASCAL NEAR mlputli(l, r)
  1361.     long l;
  1362.     {
  1363.     register long q;
  1364.  
  1365.     if (l < 0)
  1366.         {
  1367.         l = -l;
  1368.         mlout('-');
  1369.         }
  1370.  
  1371.     q = l/r;
  1372.  
  1373.     if (q != 0)
  1374.         mlputli(q, r);
  1375.  
  1376.     mlout((int)(l%r)+'0');
  1377.     ++ttcol;
  1378.     }
  1379. /*}}}*/
  1380.  
  1381. /*
  1382.  *      write out a scaled integer with two decimal places
  1383.  */
  1384.  
  1385. /*{{{  PASCAL NEAR mlputf(s)*/
  1386. PASCAL NEAR mlputf(s)
  1387.  
  1388. int s;  /* scaled integer to output */
  1389.  
  1390. {
  1391.         int i;  /* integer portion of number */
  1392.         int f;  /* fractional portion of number */
  1393.  
  1394.         /* break it up */
  1395.         i = s / 100;
  1396.         f = s % 100;
  1397.  
  1398.         /* send out the integer portion */
  1399.         mlputi(i, 10);
  1400.         mlout('.');
  1401.         mlout((f / 10) + '0');
  1402.         mlout((f % 10) + '0');
  1403.         ttcol += 3;
  1404. }       
  1405. /*}}}*/
  1406.  
  1407. #if RAINBOW
  1408.  
  1409. /*{{{  PASCAL NEAR putline(row, col, buf)*/
  1410. PASCAL NEAR putline(row, col, buf)
  1411.     int row, col;
  1412.     char buf[];
  1413.     {
  1414.     int n;
  1415.  
  1416.     n = strlen(buf);
  1417.     if (col + n - 1 > term.t_ncol)
  1418.         n = term.t_ncol - col + 1;
  1419.     Put_Data(row, col, n, buf);
  1420.     }
  1421. /*}}}*/
  1422.  
  1423. #endif
  1424.  
  1425.